home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / core / UIComponentDescriptor.as < prev    next >
Text File  |  2009-02-12  |  699b  |  32 lines

  1. package mx.core
  2. {
  3.    use namespace mx_internal;
  4.    
  5.    public class UIComponentDescriptor extends ComponentDescriptor
  6.    {
  7.       
  8.       mx_internal static const VERSION:String = "3.0.0.0";
  9.        
  10.       
  11.       mx_internal var instanceIndices:Array;
  12.       
  13.       public var stylesFactory:Function;
  14.       
  15.       public var effects:Array;
  16.       
  17.       mx_internal var repeaters:Array;
  18.       
  19.       mx_internal var repeaterIndices:Array;
  20.       
  21.       public function UIComponentDescriptor(param1:Object)
  22.       {
  23.          super(param1);
  24.       }
  25.       
  26.       override public function toString() : String
  27.       {
  28.          return "UIComponentDescriptor_" + id;
  29.       }
  30.    }
  31. }
  32.